home *** CD-ROM | disk | FTP | other *** search
- //-------------------------------------------------------------------//
- // execute an external program through a task obey file
- //
-
- // Syntax: gnupl_pipe ( M, N)
-
- // Description:
- // !Runpipe is taskobey file , while M,N are parameters
- // please read the 'function' and 'list' help files
- // Try >gnupl_pipe ("gnupipe", "te")
-
- //-------------------------------------------------------------------//
-
- gnupl_pipe = function ( M , N)
- {
- local(M);
- local(N);
- local (sys_string);
- sys_string = "!Runpipe"+" "+M+" < "+N;
- system(sys_string);
- };
-